| 12345678910111213141516171819202122 |
- import PlaceholderPage from "@/components/placeholders/PlaceholderPage";
- /**
- * /:branch/search
- *
- * Important:
- * - This is a static segment under [branch].
- * - It must exist explicitly, so "search" is not interpreted as [year].
- *
- * Next.js 15+ treats `params` as an async value (Promise) for dynamic routes.
- */
- export default async function BranchSearchPage({ params }) {
- const resolvedParams = await params;
- return (
- <PlaceholderPage
- title="Suche"
- description="Platzhalter für die Suche. Die echte Suche wird in einem späteren Ticket umgesetzt."
- params={resolvedParams}
- />
- );
- }
|